home *** CD-ROM | disk | FTP | other *** search
/ Interplay's Learn to Program Basic (Review Copy) / Learn to Program Basic Review Copy (Interplay)(June 23, 1998).ISO / pc / ltpbasic / refxmpl / fileclos.bas < prev    next >
BASIC Source File  |  1998-04-07  |  132b  |  10 lines

  1. FileOpen "MyFile.txt", NEW
  2. FileWrite "This is a test"
  3. FileClose
  4.  
  5. FileOpen "MyFile.txt",EXIST 1
  6. FileRead A$,1
  7. FileClose 1
  8. Print A$
  9.